home *** CD-ROM | disk | FTP | other *** search
/ Interactive Web Graphics with Shout 3D / Interactive Web Graphics With Shout 3D.iso / mac / Shout3Ddemo / S3D_2E1.exe / Shout3d_runtime / codebase / applets / BindingTestApplet.java < prev    next >
Text File  |  2000-09-01  |  595b  |  29 lines

  1. /**    
  2.     Company:        Eyematic Interfaces
  3.     Project:        Shout3D 2.0 Sample Code
  4.     Class:            BindingTestApplet
  5.     Date:            April 26, 1999
  6.     Description:    Class for applet that tests binding mechanism
  7.     (C) Copyright Eyematic Interfaces, Inc. - 1997-2000 - All rights reserved
  8.  */
  9.  
  10. package applets;
  11. import  shout3d.*;
  12.  
  13. /**
  14.  * BindingTestApplet
  15.  * 
  16.  * @author Paul Isaacs
  17.  * @author Jim Stewartson
  18.  * @author Dave Westwood
  19.  */
  20.  
  21. public class BindingTestApplet extends Shout3DApplet {
  22.  
  23.     // Set the panel to be 
  24.     public void initShout3DPanel(){
  25.         panel = new BindingTestPanel(this);
  26.     }
  27.     
  28. }
  29.